@font-face {
  font-family: "clash-display";
  src: url(../fonts/ClashDisplay-Semibold.woff2) format("woff2");
  font-weight: 600;
}

:root {
  --primary-color: #ff4d00;
  --primary-font: "clash-display", sans-serif;
  --global-font: "Epilogue", sans-serif;
  --dark-color: #111a2d;
  --light-color: #fff;
  --dark-lite-color: #1e1e1e;
  --light-lite-color: #d6ddeb;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--global-font);
}

figure {
  margin: 0;
}

figure,
img,
svg {
  max-width: 100%;
  vertical-align: middle;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

path,
rect,
circle,
svg,
button,
a {
  transition: 0.3s;
}

button {
  cursor: pointer;
}

.jr-container {
  width: clamp(320px, 90%, 1220px);
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 575px) {
  .jr-container {
    width: 100%;
  }
}

.jr-flex {
  display: flex;
}

.jr-itms-ctr {
  align-items: center;
}

.jr-justify-btwn {
  justify-content: space-between;
}

.jr-btn--solid,
.jr-btn--transparent {
  display: inline-block;
  cursor: pointer;
  padding: 12px 24px;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid transparent;
  font: 700 16px/1.2 var(--global-font);
}

.jr-btn--solid {
  color: var(--light-color);
  background-color: var(--primary-color);
}

.jr-btn--solid:hover {
  background-color: #ff4d00cc;
}

.jr-btn--transparent {
  background-color: transparent;
  color: var(--primary-color);
}

.jr-btn--transparent:hover {
  border-color: var(--primary-color);
}

/* *************************** */
/* ********** Header ********* */
/* *************************** */
.jr-header {
  padding: 14px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.jr-header__inner {
  gap: 48px;
}

.jr-header__left {
  gap: 48px;
}

.jr-header__nav {
  gap: 24px;
}

.jr-header__nav-link {
  color: var(--dark-lite-color);
  text-decoration: none;
  font: 500 16px/1.2 var(--global-font);
  transition: color 0.3s;
}

.jr-header__nav-link:hover {
  color: var(--primary-color);
}

.jr-header__auth {
  gap: 16px;
}

/* *********Humbarger Menu********** */

.jr-header__hamburger-menu {
  display: none;
  line-height: 1;
}

.jr-header__hamburger-button {
  padding: 0;
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding: 0.2rem;
  line-height: 1;
  vertical-align: bottom;
}

.jr-header__hamburger-slice {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background-color: var(--dark-color);
  display: block;
  margin: 0 0 4px auto;
  transition: background-color 0.3s;
  pointer-events: none;
}

.jr-header__hamburger-slice.jr-slice-middle {
  width: 16px;
}

.jr-header__hamburger-slice.jr-slice-bottom {
  /* width: 14px; */
}

.jr-header__hamburger-button:hover .jr-header__hamburger-slice {
  background-color: var(--primary-color);
}

.jr-header__hamburger-slice:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .jr-header__inner,
  .jr-header__left {
    gap: 30px;
  }

  .jr-header__auth {
    gap: 8px;
  }

  .jr-btn--solid,
  .jr-btn--transparent {
    padding: 10px 20px;
  }
}

@media (max-width: 1023px) {
  .jr-header__hamburger-menu {
    display: block;
  }

  .jr-header__nav,
  .jr-header__auth {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .jr-btn--solid,
  .jr-btn--transparent {
    padding: 8px 16px;
  }
}

/* ***********Mobile Offcanvas*********** */
.jr-offcanvas {
  height: 100vh;
  width: 320px;
  background-color: #fff;
  right: -321px;
  top: 0;
  position: fixed;
  padding: 60px 0 10px 0;
  transition: 0.3s;
  z-index: 999999;
  flex-direction: column;
  justify-content: space-between;
  display: none;
}

.offcanvas-active.jr-offcanvas {
  right: 0;
  box-shadow: 0 0 15px 0 #00000021;
}

.jr-offcanvas__close {
  height: 24px;
  width: 24px;
  border: 1px solid var(--dark-color);
  border-radius: 50%;
  position: absolute;
  top: 10px;
  right: 10px;
  color: var(--dark-color);
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.jr-offcanvas__close:hover {
  color: red;
  border-color: red;
}

.jr-offcanvas__close svg {
  pointer-events: none;
}

.jr-offcanvas__logo {
  max-width: 60%;
  margin: 0 auto 10px;
}

.jr-offcanvas__user{
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-transform: capitalize;
}

.jr-offcanvas__logo img{
    width: 100%;
    height: auto;
}

.jr-offcanvas__logo a {
  display: block;
}

.jr-offcanvas__nav-list a {
  font-size: 16px;
  font-weight: 400;
}

.jr-offcanvas__nav-list a {
  display: block;
  text-decoration: none;
}

.jr-offcanvas__nav-list > li {
  border-bottom: solid 1px #00000015;
}

.jr-offcanvas__nav-list > li a {
  color: var(--dark-color);
  padding: 14px 20px;
}

.jr-offcanvas__nav-list > li a:hover,
.jr-offcanvas__nav-list > li a.active-link {
  color: var(--light-color);
  background-color: var(--primary-color);
}

.jr-offcanvas__footer {
  padding: 8px 16px;
}

.jr-offcanvas__btns-row {
  gap: 10px;
  margin-bottom: 10px;
}

.jr-offcanvas__btn {
  flex: 1;
  text-align: center;
}

.jr-offcanvas__btn.jr-btn--transparent {
  border-color: var(--primary-color);
}

@media (max-width: 1023px){
    .jr-offcanvas{
       display: flex;
    }
}

/* *************************** */
/* *********** Hero ********** */
/* *************************** */
.jr-hero {
  position: relative;
  z-index: 1;
  padding: 80px 0 0;
}

.jr-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.jr-hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-hero__inner {
  position: relative;
  padding: 195px 0 65px;
}

.jr-hero__content {
  width: 100%;
  z-index: 9;
}

.jr-hero__title {
  font: 600 72px/1.1 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 23px;
  max-width: 630px;
}

.jr-hero__description {
  font: 400 20px/1.6 var(--global-font);
  color: var(--dark-lite-color);
  margin: 0;
  max-width: 630px;
}

.jr-hero__thumb {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 100%;
  max-width: 45%;
  z-index: 1;
}

.jr-hero__thumb img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: bottom;
}

.jr-hero__search {
  background-color: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 15px 50px 0 rgba(175, 176, 185, 0.15);
  margin: 65px 0 0;
  border: 1px solid var(--light-lite-color);
}

.jr-hero__search-form {
  gap: 20px;
}

.jr-hero__search-field {
  flex: 1;
  position: relative;
}

.jr-hero__search-icon {
  padding: 16px;
  display: flex;
  align-items: center;
}

.jr-hero__search-input,
.jr-hero__search-select {
  flex: 1;
  padding: 10px 0;
  margin-right: 20px;
  border: solid #e0e0e0;
  border-width: 0 0 1px;
  font: 400 16px/1.6 var(--global-font);
  color: var(--dark-lite-color);
  outline: none;
}

.jr-hero__search-divider {
  align-self: stretch;
  width: 1px;
  background-color: #e0e0e0;
}

.jr-hero__suggestions {
  margin-top: 16px;
  gap: 8px;
  font: 500 16px/1.2 var(--global-font);
  color: var(--dark-lite-color);
  flex-wrap: wrap;
}

.jr-hero__suggestions p {
  margin: 0;
}

.jr-hero__suggestions-label {
  opacity: 0.7;
}

/* Responsive tweaks */
@media (max-width: 1023px) {
  .jr-hero__inner {
    padding: 60px 0;
  }

  .jr-hero__title {
    font-size: 62px;
  }

  .jr-hero__search {
    padding: 16px;
    margin-top: 30px;
  }

  .jr-hero__search-form {
    gap: 10px;
  }

  .jr-hero__description {
    font-size: 18px;
  }

  /* .jr-hero__content {
    width: 60%;
  } */

  .jr-hero__thumb {
    display: none;
  }

  .jr-hero__search-icon {
    padding: 5px;
  }
}

@media (max-width: 991px) {
  .jr-hero__title {
    font-size: 56px;
  }

  .jr-hero__description {
    font-size: 16px;
  }

  .jr-hero__suggestions {
    font-size: 15px;
  }

  .jr-hero__inner {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .jr-hero {
    padding: 60px 0 0;
  }

  .jr-hero__inner {
    padding: 40px 0;
  }

  .jr-hero__title {
    font-size: 48px;
    margin-bottom: 10px;
  }

  .jr-hero__content {
    width: 100%;
  }

  .jr-hero__search {
    margin-top: 20px;
  }

  .jr-hero__description {
    max-width: 100%;
    margin: 0 auto;
  }

  .jr-hero__search-form {
    flex-direction: column;
  }

  .jr-hero__search-field {
    width: 100%;
  }

  .jr-hero__search-icon {
    margin-right: 8px;
  }

  .jr-hero__search-divider {
    display: none;
  }

  .jr-hero__search-submit {
    width: 100%;
    padding-block: 10px;
    margin-top: 10px;
  }

  .jr-hero__search {
    padding: 10px;
  }

  .jr-hero__suggestions {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .jr-hero__search-icon {
    padding: 0;
  }

  .jr-hero__title {
    font-size: 38px;
  }
}

/* ***************************** */
/* ********* Categories ******** */
/* ********* Blog Cards ******** */
/* ***************************** */
.jr-blogs,
.jr-categories {
  padding: 72px 0;
  position: relative;
  z-index: 1;
}

.jr-blogs__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.jr-blogs__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-categories__header,
.jr-blogs__header {
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 16px;
  flex-wrap: wrap;
}

.jr-categories__title,
.jr-blogs__title {
  font: 600 48px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
}

.jr-blogs__title {
  color: var(--light-color);
}

.jr-show-all,
.jr-blogs__more-link {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s;
}

.jr-blogs__more-link {
  color: var(--light-color);
}

.jr-blogs__more-link:hover {
  color: var(--primary-color);
}

.jr-show-all-icon,
.jr-blogs__more-link__icon {
  margin-left: 5px;
}

.jr-category-grid,
.jr-blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.jr-card--style01,
.jr-card--style02 {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: 0.3s;
  position: relative;
  z-index: 1;
}

.jr-card--style02 {
  padding: 0;
  overflow: hidden;
  border: none;
}

.jr-card--style02 .jr-card__thumb {
  overflow: hidden;
}

.jr-card--style02 .jr-card__thumb img {
  transition: 0.3s ease;
}

.jr-card--style02:hover .jr-card__thumb img {
  transform: scale(1.2);
}

.jr-card--style01 .jr-card__link,
.jr-card--style02 .jr-card__link {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9;
  display: block;
}

.jr-card--style01.jr-category-card:hover {
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  color: var(--light-color);
}

.jr-card--style01 .jr-card__icon {
  color: #000;
  height: 48px;
  width: 48px;
  display: inline-block;
  margin-bottom: 32px;
}

.jr-card--style02 .jr-card__content {
  padding: 24px 16px;
}

.jr-card--style01:hover .jr-card__icon {
  color: var(--light-color);
}

.jr-card--style01 .jr-card__title,
.jr-card--style02 .jr-card__title {
  font: 600 24px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 12px;
  transition: 0.3s;
}

.jr-card--style02 .jr-card__title {
  font-size: 20px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.jr-card--style01:hover .jr-card__title {
  color: var(--light-color);
}

.jr-card--style01 .jr-card__count,
.jr-card--style02 .jr-card__count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7c8493;
  font: 400 18px/1.2 var(--global-font);
}

.jr-card--style01:hover .jr-card__count {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive styles */
@media (max-width: 1366px) {
  .jr-category-grid,
  .jr-blog-grid {
    gap: 16px;
  }

  .jr-card--style01 {
    padding: 16px;
  }
}

@media (max-width: 1080px) {
  .jr-category-grid,
  .jr-blog-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .jr-categories__title,
  .jr-blogs__title {
    font-size: 42px;
  }

  .jr-card--style01 .jr-card__icon {
    height: 42px;
    width: 42px;
    margin-bottom: 24px;
  }

  .jr-card__arrow svg {
    height: 20px;
    width: 20px;
  }

  .jr-card--style01 .jr-card__count,
  .jr-card--style02 .jr-card__count {
    font-size: 16px;
  }

  .jr-card--style02 .jr-card__content {
    padding: 16px 10px;
  }
}

@media (max-width: 991px) {
  .jr-blogs,
  .jr-categories {
    padding: 60px 0;
  }

  .jr-categories__header,
  .jr-blogs__header {
    margin-bottom: 40px;
  }

  .jr-categories__title,
  .jr-blogs__title {
    font-size: 38px;
  }

  .jr-show-all,
  .jr-blogs__more-link {
    font-size: 14px;
  }

  .jr-card--style01 .jr-card__title,
  .jr-card--style02 .jr-card__title {
    font-size: 22px;
    margin: 0 0 8px;
  }
}

@media (max-width: 767px) {
  .jr-blogs,
  .jr-categories {
    padding: 40px 0;
  }

  .jr-categories__header,
  .jr-blogs__header {
    margin-bottom: 30px;
  }

  .jr-category-grid,
  .jr-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jr-categories__title,
  .jr-blogs__title {
    font-size: 32px;
  }

  .jr-card--style01 .jr-card__title {
    font-size: 20px;
  }

  .jr-card--style02 .jr-card__title {
    font-size: 18px;
  }

  .jr-card--style01 .jr-card__count,
  .jr-card--style02 .jr-card__count {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .jr-category-grid,
  .jr-blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ***************************** */
/* ********* Footer Area ******* */
/* ***************************** */
.jr-footer {
  background-color: #1a1a1a;
  color: #ffffff;
}

.jr-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
  padding: 64px 0 80px;
}

.jr-footer__logo {
  margin-bottom: 32px;
  display: inline-block;
}

.jr-footer__description {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-lite-color);
  max-width: 320px;
  margin: 0 0 12px;
}

.jr-footer__heading {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 18px;
  color: #ffffff;
  font-family: var(--global-font);
}

.jr-footer__nav-item:not(:last-child) {
  margin-bottom: 16px;
}

.jr-footer__nav-link {
  color: var(--light-lite-color);
  text-decoration: none;
  font: 400 16px/1.2 var(--global-font);
  transition: color 0.3s;
}

.jr-footer__nav-link:hover {
  color: var(--primary-color);
}

.jr-footer__form {
  max-width: 500px;
}

.jr-footer__form-text {
  color: var(--light-lite-color);
  font: 400 16px/1.6 var(--global-font);
  margin: 0 0 12px;
}

.jr-footer__form-field {
  gap: 8px;
}

.jr-footer__form-input {
  padding: 12px 16px;
  border-radius: 8px;
  border: none;
  width: 100%;
  flex: 1;
  font: 400 16px/1.2 var(--global-font);
}

.jr-footer__bottom {
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 32px;
}

.jr-footer__copyright {
  font: 400 16px/1.6 var(--global-font);
  color: var(--light-color);
  opacity: 0.5;
  margin: 0;
}

.jr-footer__social {
  display: flex;
  gap: 24px;
}

.jr-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: #ffffff;
  transition: background-color 0.3s;
}

.jr-footer__social-link:hover {
  background-color: var(--primary-color);
}

.jr-footer__social-icon {
  width: 16px;
  height: 16px;
}

/* Responsive styles */
@media (max-width: 1366px) {
  .jr-footer__bottom {
    padding: 16px 0;
  }
}

@media (max-width: 1023px) {
  .jr-footer__main {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .jr-footer__main {
    padding: 60px 0 40px;
  }

  .jr-footer__social {
    gap: 16px;
  }

  .jr-footer__logo {
    margin-bottom: 20px;
  }

  /*
.jr-footer__main {
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 32px;
  padding: 64px 0 80px;
}

.jr-footer__logo {
  margin-bottom: 32px;
}

.jr-footer__description {
16px
  max-width: 320px;
  margin: 0 0 12px;
}

.jr-footer__heading {
  font-size: 18px;
  margin: 0 0 18px;
}

.jr-footer__nav-item {
  margin-bottom: 16px;
}

.jr-footer__nav-link {
16px
}

.jr-footer__form-text {
16px
  margin: 0 0 12px;
}

.jr-footer__form-input {
  padding: 12px 16px;
16px
}

.jr-footer__bottom {
  padding: 40px 0;
  gap: 32px;
}

.jr-footer__copyright {
 16px
}

.jr-footer__social {
  gap: 24px;
}

.jr-footer__social-link {
  width: 32px;
  height: 32px;
}

.jr-footer__social-icon {
  width: 16px;
  height: 16px;
}

  */
}

@media (max-width: 767px) {
  .jr-footer__main {
    padding: 40px 0 20px;
    grid-template-columns: 1fr;
  }

  .jr-footer__heading {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .jr-footer__nav-item:not(:last-child) {
    margin-bottom: 8px;
  }

  .jr-footer__description,
  .jr-footer__nav-link,
  .jr-footer__form-text,
  .jr-footer__form-input {
    font-size: 15px;
  }

  .jr-footer__bottom {
    gap: 12px;
  }

  .jr-footer__copyright {
    font-size: 13px;
  }

  .jr-footer__bottom {
    flex-direction: column;
  }

  .jr-footer__social {
    gap: 10px;
  }
}

/* **************************** */
/* ******* Featured Jobs ****** */
/* **************************** */
.jr-featured-cards {
  padding: 72px 0;
  background-color: #f8f8fd;
}

.jr-featured-cards__header {
  align-items: flex-end;
  margin-bottom: 48px;
}

.jr-featured-cards__title {
  font: 600 48px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
}

.jr-show-all {
  display: flex;
  align-items: center;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
}

.jr-show-all-icon {
  margin-left: 6px;
}

.jr-featured-card__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

/* Job Card Styles */
.jr-card--style03 {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  padding: 24px 40px;
  position: relative;
}

.jr-card--style03:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.jr-card--style03 .jr-card__content {
  display: flex;
  gap: 24px;
}

.jr-card--style03 .jr-card__logo {
  width: 64px;
  height: 64px;
}

.jr-card--style03 .jr-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-card--style03 .jr-card__info {
  flex: 1;
  /* position: relative; */
}

.jr-card--style03 .jr-card__info-row {
  align-items: flex-start;
  gap: 15px;
}

.jr-card--style03 .jr-card__title {
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 8px 0;
  font-family: var(--global-font);
}

.jr-card--style03 .jr-card__description {
  font-size: 16px;
  color: #515b6f;
  margin: 0 0 8px 0;
  line-height: 1.5;
  font-family: var(--global-font);
  font-weight: 400;
  max-width: 300px;
}

.jr-card--style03 .jr-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.jr-card__meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 8px;
  border-left: 1px solid #dfe2e5;
}

.jr-card--style03 .jr-card__meta-type,
.jr-card--style03 .jr-card__meta-tag {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin: 0;
  padding: 10px;
  border-radius: 100px;
  font-weight: 500;
}

.jr-card--style03 .jr-card__meta-tag {
  border: 1px solid transparent;
}

.jr-card__meta-type--type {
  background-color: rgba(86, 205, 173, 0.1);
  color: #56cdad;
}

.jr-card__meta-type--location {
  background-color: rgba(70, 64, 222, 0.1);
  color: #4640de;
}

.jr-card__meta-type--salary {
  background-color: rgba(38, 164, 255, 0.1);
  color: #26a4ff;
}

.jr-card__meta-type--experience {
  background-color: rgba(235, 133, 51, 0.1);
  color: #ffb836;
}

.jr-card--style03 .jr-card__meta-tag--tag1 {
  color: #ffb836;
  border-color: #ffb836;
}

.jr-card--style03 .jr-card__meta-tag--tag2 {
  color: #4640de;
  border-color: #4640de;
}

.jr-card--style03 .jr-card__more-link {
  display: flex;
  align-items: center;
  color: #2f343a;
  text-decoration: underline;
  font-size: 16px;
  font-weight: 500;
  gap: 6px;
  white-space: nowrap;
  transition: color 0.3s;
}

.jr-card--style03 .jr-card__more-link:hover {
  color: var(--primary-color);
}

.jr-card--style03 .jr-card__more-link svg {
  min-width: fit-content;
}

/* Responsive styles */
@media (max-width: 1366px) {
  .jr-featured-cards__header {
    margin-bottom: 40px;
  }

  .jr-card--style03 {
    padding: 20px;
  }

  .jr-card--style03 .jr-card__content {
    gap: 16px;
  }

  .jr-card--style03 .jr-card__logo {
    width: 56px;
    height: 56px;
  }

  .jr-card--style03 .jr-card__meta-type,
  .jr-card--style03 .jr-card__meta-tag {
    padding: 6px 8px;
  }

  .jr-card--style03 .jr-card__description {
    /* max-width: 100%; */
  }

  .jr-featured-card__grid {
    gap: 16px;
  }
}

@media (max-width: 1023px) {
  .jr-featured-card__grid {
    gap: 16px;
  }

  .jr-featured-cards {
    padding: 60px 0;
  }

  .jr-featured-cards__title {
    font-size: 42px;
  }

  .jr-card--style03 .jr-card__title {
    font-size: 18px;
  }
}

@media (max-width: 991px) {
  .jr-featured-card__grid {
    grid-template-columns: 1fr;
  }

  .jr-featured-cards {
    padding: 50px 0;
  }

  .jr-featured-cards__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .jr-featured-cards {
    padding: 40px 0;
  }

  .jr-featured-cards__title {
    font-size: 32px;
  }

  .jr-featured-cards__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .jr-featured-cards__title {
    font-size: 32px;
  }

  .jr-card--style03 .jr-card__title {
    font-size: 17px;
  }

  .jr-card--style03 .jr-card__description,
  .jr-show-all,
  .jr-card--style03 .jr-card__more-link {
    font-size: 15px;
  }

  .jr-card--style03 .jr-card__meta-type,
  .jr-card--style03 .jr-card__meta-tag {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .jr-card--style03 .jr-card__content {
    flex-direction: column;
  }

  .jr-card--style03 .jr-card__more-link {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}

/* *************** Job Listing *************** */
.jr-job-listing-body-content {
  padding: 60px 0;
  gap: 60px;
  margin-top: 73px;
  background-color: #f8f9fa;
}

.jr-job-listing-body-content .jr-body-content__inner {
  align-items: flex-start;
  gap: 60px;
}

.jr-job-listing-body-content .jr-sidebar {
  width: 250px;
  transition: transform 0.3s ease-in-out;
  position: relative;
}

.jr-sidebar__close {
  position: absolute;
  top: 7px;
  right: 10px;
  background-color: transparent;
  padding: 0;
  border: none;
  cursor: pointer;
  color: var(--dark-color);
  transition: 0.3s;
  display: none;
}

.jr-sidebar__close:hover {
  color: red;
}

.jr-job-listing-body-content .jr-main {
  flex: 1;
}

.jr-job-listing-body-content .jr-card--style03 {
  margin-bottom: 20px;
}

.jr-job-list__header {
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 10px 20px;
}

/* Sidebar Trigger Button */
.jr-sidebar-trigger {
  display: none;
  border: none;
  border-radius: 4px;
  width: 36px;
  height: 34px;
  color: var(--primary-color);
  background-color: transparent;
  cursor: pointer;
  padding: 8px;
  transition: background-color 0.3s;
  border: 1px solid var(--primary-color);
  margin-right: 12px;
}

.jr-sidebar-trigger:hover {
  color: var(--light-color);
  background-color: var(--primary-color);
}

/* Add overlay for mobile */
.jr-sidebar-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.jr-sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 991px) {
  .jr-sidebar-trigger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .jr-sidebar__close {
    display: block;
  }

  .jr-sidebar {
    position: fixed;
    left: -300px;
    top: 0;
    height: 100vh;
    width: 300px;
    background-color: #fff;
    z-index: 999;
    overflow-y: auto;
    padding: 20px;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }

  .jr-sidebar.active {
    left: 0;
  }

  .jr-sidebar-overlay {
    display: block;
  }
}

.jr-job-list__title {
  font: 600 34px/1.2 var(--primary-font);
  color: var(--dark-color);
  margin: 0;
}

.jr-job-listing-filters {
  gap: 16px;
  flex-wrap: wrap;
}

.jr-job-listing-filters .jr-search-field,
.jr-job-listing-filters .jr-sort-by {
  display: flex;
  align-items: center;
}

.jr-job-listing-filters .jr-search-field {
  flex: 1;
  position: relative;
}

.jr-job-listing-filters .jr-search-icon {
  color: var(--dark-lite-color);
  position: absolute;
  left: 8px;
  pointer-events: none;
}

.jr-job-listing-filters .jr-search-input,
.jr-job-listing-filters .jr-search-select {
  width: 100%;
  padding: 10px 16px 10px 32px;
  font: 400 14px/1.2 var(--global-font);
  color: var(--dark-color);
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  background-color: transparent;
  min-width: 175px;
}

.jr-job-listing-filters .jr-search-select {
  padding: 10px 16px;
  cursor: pointer;
}

/* ******** Pagination ******** */
.jr-pagination {
  text-align: center;
  margin: 36px 0 0;
  font-family: var(--global-font);
}

.jr-pagination__list {
  display: inline-flex;
  gap: 8px;
  padding: 0;
  list-style: none;
  margin: 0;
}

.jr-pagination__item:first-child {
  margin-right: 20px;
}

.jr-pagination__item:last-child {
  margin-left: 20px;
}

.jr-pagination__link {
  padding: 4px;
  border: none;
  font: 400 19px/1.2 var(--dark-color);
  background: transparent;
  color: var(--dark-color);
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.jr-pagination__link:hover {
  background: #eff3f6;
  /* color: var(--light-color); */
}

.jr-pagination__link[disabled] {
  cursor: default;
  opacity: 0.5;
}

.jr-pagination__link.jr-active {
  background: #eff3f6;
}

@media (max-width: 1200px) {
  .jr-job-listing-body-content {
    margin-top: 69px;
  }

  .jr-job-listing-body-content .jr-body-content__inner {
    gap: 30px;
  }
}

@media (max-width: 1080px) {
  .jr-job-listing-body-content {
    padding: 40px 0;
    gap: 30px;
  }

  .jr-job-listing-body-content .jr-sidebar {
    width: 200px;
  }
}

@media (max-width: 1023px) {
  .jr-job-listing-body-content {
    margin-top: 64px;
  }
}

@media (max-width: 991px) {
  .jr-job-listing-body-content .jr-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    background-color: var(--light-color);
    z-index: 999;
    padding: 30px 20px;
    width: 250px;
    height: 100vh;
    transform: translateX(-110%);
    transition: transform 0.3s;
  }

  .jr-job-listing-body-content .jr-sidebar.active {
    transform: translateX(0);
  }

  /*

.jr-job-listing-body-content .jr-card--style03 {
  margin-bottom: 20px;
}

.jr-job-list__header {
  margin-bottom: 32px;
}

.jr-job-list__title {
34px
}

.jr-job-listing-filters {
  gap: 16px;
}

.jr-job-listing-filters .jr-search-input,
.jr-job-listing-filters .jr-search-select {
  padding: 10px 16px 10px 32px;
14px
}

.jr-job-listing-filters .jr-search-select {
  padding: 10px 16px;
}

.jr-pagination {
  margin: 36px 0 0;
}

.jr-pagination__item:first-child {
  margin-right: 20px;
}

.jr-pagination__item:last-child {
  margin-left: 20px;
}

.jr-pagination__link {
 19px
  height: 40px;
  width: 40px;
}

  */
}

@media (max-width: 767px) {
  .jr-pagination__link {
    font-size: 16px;
    height: 36px;
    width: 36px;
  }

  .jr-pagination__item:first-child,
  .jr-pagination__item:last-child {
    margin: 0;
  }

  .jr-pagination__list {
    gap: 6px;
  }

  /* .jr-job-listing-body-content {
    padding: 40px 0;
    gap: 30px;
    margin-top: 80px;
  } */
}

@media (max-width: 575px) {
  .jr-job-listing-filters .jr-search-field,
  .jr-job-listing-filters .jr-sort-by {
    flex: 1;
  }
}

/* ********************************************** */
/* ************* Job Listing Aside ************** */
/* ********************************************** */
.jr-sidebar__block {
  margin-bottom: 24px;
}

.jr-sidebar__block:last-child {
  margin-bottom: 0;
}

.jr-sidebar__heading {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 18px 0;
  padding-bottom: 10px;
  position: relative;
}

.jr-sidebar__heading--underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary-color);
  border-radius: 2px;
}

/* .jr-sidebar__heading-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.jr-sidebar__toggle {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  padding: 4px;
} */

.jr-sidebar__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.jr-sidebar__item {
  margin-bottom: 12px;
}

.jr-sidebar__item:last-child {
  margin-bottom: 0;
}

.jr-sidebar__link {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: var(--global-font);
  transition: color 0.2s;
  display: block;
  line-height: 1.2;
  padding: 10px 0;
}

.jr-sidebar__link:hover {
  color: var(--primary-color);
}

/* Salary Range Slider */
.jr-sidebar__salary {
  margin-top: 16px;
}

.jr-sidebar__slider-container {
  position: relative;
  width: 100%;
  height: 17px;
}

.jr-sidebar__slider {
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 6px;
  background: none;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
  z-index: 3;
}

.jr-sidebar__slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark-lite-color);
  border: 2px solid var(--light-color);
  cursor: pointer;
  pointer-events: auto;
  z-index: 4;
}

.jr-sidebar__slider::-moz-range-thumb {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--dark-lite-color);
  border: 2px solid var(--light-color);
  cursor: pointer;
  pointer-events: auto;
  z-index: 4;
}

.jr-sidebar__slider-track {
  position: absolute;
  top: 7px;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: #e5e7eb;
  border-radius: 3px;
  z-index: 1;
}

.jr-sidebar__slider-range {
  position: absolute;
  top: 7px;
  height: 5px;
  background-color: var(--dark-color);
  border-radius: 3px;
  z-index: 2;
}

.jr-sidebar__salary-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
}

.jr-sidebar__reset {
  background-color: #f3f4f6;
  border: none;
  border-radius: 4px;
  padding: 6px 16px;
  font-size: 16px;
  color: var(--dark-color);
  cursor: pointer;
  transition: background-color 0.2s;
}

.jr-sidebar__reset:hover {
  background-color: #e5e7eb;
}

.jr-sidebar__price-range {
  font-size: 16px;
  color: var(--dark-color);
  font-weight: 400px;
  font-family: var(--global-font);
}

/* Responsive styles */
@media (max-width: 1200px) {
  .jr-sidebar__link {
    padding: 3px 0;
  }
}

@media (max-width: 1080px) {
  .jr-sidebar__reset {
    padding: 6px 10px;
  }
}

@media (max-width: 767px) {
  .jr-sidebar__link {
    font-size: 15px;
  }
}

/* **************************** */
/* ****** Authentication ****** */
/* **************************** */
.jr-auth-body-content {
  padding: 210px 0 170px;
  position: relative;
  z-index: 1;
}

.jr-auth-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.jr-auth-body-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-auth-body-content .jr-container {
  max-width: 630px;
}

.jr-auth-form {
  background-color: #fff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
}

.jr-auth-form__title {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 12px;
}

.jr-auth-form__description {
  color: var(--dark-lite-color);
  font: 400 16px/1.6 var(--global-font);
  margin: 0 0 32px;
}

.jr-auth-form__field:not(:last-child) {
  margin-bottom: 24px;
}

.jr-auth-form__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  font-family: var(--global-font);
  color: var(--dark-color);
}

.jr-auth-form__input,
.jr-auth-form__textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-color);
  transition: border-color 0.3s;
}

.jr-auth-form__textarea {
  height: 100px;
  resize: none;
}

.jr-auth-form__textarea:focus,
.jr-auth-form__input:focus {
  outline: none;
  border-color: #ff5722;
}

.jr-auth-form__password-wrapper {
  position: relative;
}

.jr-auth-form__password-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
}

.jr-auth-form__row {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.jr-auth-form__row .jr-auth-form__field {
  flex: 1;
  margin: 0 !important;
}

.jr-auth-form__select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-size: 16px;
  background-color: #fff;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.jr-auth-form__select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.jr-auth-form__submit {
  width: 100%;
  padding: 14px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  line-height: 1.4;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 32px;
}

.jr-auth-form__submit:hover {
  background-color: #e64a19;
}

.jr-auth-form__footer {
  margin-top: 32px;
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-color);
}

.jr-auth-form__link {
  font-weight: 600;
  margin-left: 4px;
  color: var(--dark-color);
  text-decoration: none;
  transition: color 0.3s;
}

.jr-auth-form__link:hover {
  color: var(--primary-color);
}

.jr-auth-form__footer.jr-flex {
  gap: 20px;
  flex-wrap: wrap;
}

.jr-auth-form__back-link {
  display: flex;
  align-items: center;
  color: var(--dark-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color 0.3s;
}

.jr-auth-form__back-link:hover {
  color: var(--primary-color);
}

.jr-auth-form__back-icon {
  margin-right: 8px;
}

/* Fields visibility */
.jr-auth-form__fields--candidate,
.jr-auth-form__fields--company {
  display: none;
}

.jr-auth-form__fields--candidate.active,
.jr-auth-form__fields--company.active {
  display: block;
  margin-bottom: 24px;
}

@media (max-width: 1023px) {
  .jr-auth-body-content {
    padding: 170px 0 120px;
  }
}

@media (max-width: 991px) {
  .jr-auth-form {
    padding: 28px;
  }

  .jr-auth-form__title {
    font-size: 28px;
  }

  .jr-auth-form__description {
    margin: 0 0 24px;
  }

  .jr-auth-form__row {
    gap: 20px;
    margin-bottom: 20px;
  }

  .jr-auth-form__field:not(:last-child),
  .jr-auth-form__fields--candidate.active,
  .jr-auth-form__fields--company.active {
    margin-bottom: 20px;
  }

  .jr-auth-form__footer {
    margin-top: 24px;
  }

  .jr-auth-form__footer.jr-flex {
    gap: 16px;
  }

  .jr-auth-form__back-link {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .jr-auth-form__back-icon {
    margin-right: 4px;
  }

  .jr-auth-form__back-icon svg {
    height: 20px;
    width: 20px;
  }
}

@media (max-width: 767px) {
  .jr-auth-body-content {
    padding: 120px 0 80px;
  }

  .jr-auth-form {
    padding: 24px;
  }

  .jr-auth-form__title {
    font-size: 24px;
  }

  .jr-auth-form__description {
    font-size: 15px;
    margin: 0 0 20px;
  }

  .jr-auth-form__input,
  .jr-auth-form__textarea,
  .jr-auth-form__select {
    font-size: 15px;
  }

  .jr-auth-form__row {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 16px;
  }

  .jr-auth-form__field:not(:last-child),
  .jr-auth-form__fields--candidate.active,
  .jr-auth-form__fields--company.active {
    margin-bottom: 16px;
  }

  .jr-auth-form__submit {
    font-size: 15px;
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .jr-auth-form {
    padding: 20px;
  }

  .jr-auth-form__input,
  .jr-auth-form__textarea,
  .jr-auth-form__select,
  .jr-auth-form__submit {
    padding: 10px 16px;
  }

  .jr-auth-form__back-link {
    margin-bottom: 20px;
  }
}

/* **************************** */
/* ******* FAQs Section ******* */
/* **************************** */
.jr-faq-area-body-content {
  padding: 145px 0 140px;
  position: relative;
  z-index: 1;
}

.jr-about-body-content .jr-faq-area {
  padding-bottom: 100px;
}

.jr-faq-area .jr-container {
  max-width: 930px;
}

.jr-faq-area-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.jr-faq-area-body-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-faq-area__header {
  text-align: center;
  margin-bottom: 40px;
}

.jr-faq-area__title {
  font-size: 45px;
  font-weight: 600;
  color: var(--dark-color);
  font-family: var(--primary-font);
  line-height: 1.3;
  margin: 0 0 12px;
}

.jr-faq-area__description {
  font-size: 16px;
  color: var(--dark-lite-color);
  max-width: 755px;
  margin: 0 auto 30px;
  line-height: 1.6;
  text-align: center;
}

.jr-faq-area__link {
  color: var(--dark-color);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s;
}

.jr-faq-area__link:hover {
  color: #e64a19;
}

/* FAQ Accordion Styles */
.jr-faq {
  margin-top: 85px;
}

.jr-faq__item:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 26px;
}

.jr-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  padding: 0 0 8px;
  cursor: pointer;
  transition: color 0.3s;
  color: var(--dark-color);
  font: 600 18px/1.2 var(--global-font);
}

.jr-faq__question:hover {
  color: #ff5722;
}

.jr-faq__question-text {
  display: flex;
  align-items: flex-start;
}

.jr-faq__question-number {
  margin-right: 8px;
}

.jr-faq__icon {
  width: 20px;
  height: 20px;
  position: relative;
}

.jr-faq__icon::before,
.jr-faq__icon::after {
  content: "";
  position: absolute;
  background-color: var(--dark-color);
  transition: 0.3s ease;
}

.jr-faq__question:hover .jr-faq__icon::before,
.jr-faq__question:hover .jr-faq__icon::after {
  background-color: var(--primary-color);
}

.jr-faq__icon::before {
  width: 2px;
  height: 20px;
  left: 9px;
  top: 0;
}

.jr-faq__icon::after {
  width: 20px;
  height: 2px;
  left: 0;
  top: 9px;
}

.jr-faq__item.active .jr-faq__icon::before {
  transform: rotate(90deg);
}

.jr-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 18px 0 0;
  color: var(--dark-lite-color);
  font-size: 16px;
  font-weight: 400;
  font-family: var(--global-font);
  line-height: 1.8;
}

.jr-faq__answer p {
  margin: 0;
}

.jr-faq__item.active .jr-faq__answer {
  max-height: 1000px;
  padding-bottom: 20px;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .jr-faq-area-body-content {
    padding: 120px 0 80px;
  }

  .jr-about-body-content .jr-faq-area {
    padding-bottom: 80px;
  }

  .jr-faq-area__header {
    margin-bottom: 30px;
  }

  .jr-faq-area__title {
    font-size: 42px;
  }

  .jr-faq-area__description {
    margin: 0 auto 20px;
  }

  .jr-faq__item:not(:last-child) {
    margin-bottom: 20px;
  }

  .jr-faq__answer {
    padding: 12px 0 0;
  }

  .jr-faq__icon {
    width: 16px;
    height: 16px;
  }

  .jr-faq__icon::before {
    height: 12px;
    left: 5px;
  }

  .jr-faq__icon::after {
    width: 12px;
    top: 5px;
  }
}

@media (max-width: 991px) {
  .jr-about-body-content .jr-faq-area {
    padding-bottom: 60px;
  }

  .jr-faq-area__header {
    margin-bottom: 30px;
  }

  .jr-faq-area__title {
    font-size: 38px;
  }

  .jr-faq-area__description {
    font-size: 15px;
    margin: 0 auto 15px;
  }

  .jr-faq {
    margin-top: 60px;
  }
}

@media (max-width: 767px) {
  .jr-about-body-content .jr-faq-area {
    padding: 20px 0 40px;
  }

  .jr-faq-area {
    padding: 60px 20px;
  }

  .jr-faq-area__title {
    font-size: 32px;
    margin: 0 0 10px;
  }

  .jr-faq-area__description {
    font-size: 15px;
  }

  .jr-faq__question,
  .jr-faq__question-text {
    font-size: 16px;
  }

  .jr-faq-area__header {
    margin-bottom: 20px;
  }

  .jr-faq {
    margin-top: 50px;
  }

  .jr-faq__item:not(:last-child) {
    margin-bottom: 15px;
  }

  .jr-faq__answer {
    padding: 7px 0 0;
    font-size: 15px;
  }

  .jr-faq-area-body-content {
    padding: 100px 0 60px;
  }
}

@media (max-width: 575px) {
  .jr-faq {
    margin-top: 40px;
  }

  .jr-faq-area-body-content {
    padding: 90px 0 40px;
  }
}

/* *************************** */
/* ********* Contact ********* */
/* *************************** */
.jr-contact-body-content {
  padding: 145px 0 120px;
  position: relative;
  z-index: 1;
}

.jr-contact-body-bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
}

.jr-contact-body-content .jr-auth-form {
  max-width: 700px;
  margin: 0 auto;
}

.jr-contact-body-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.jr-contact-header__title {
  font-size: 45px;
  font-weight: 600;
  color: var(--dark-color);
  font-family: var(--primary-font);
  line-height: 1.3;
  margin: 0 0 16px;
}

.jr-contact-header__description {
  font-size: 16px;
  color: var(--dark-lite-color);
  margin: 0 auto;
  line-height: 1.6;
  max-width: 755px;
}

@media (max-width: 1023px) {
  .jr-contact-body-content {
    padding: 120px 0 80px;
  }

  .jr-contact-header {
    margin-bottom: 50px;
  }

  .jr-contact-header__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .jr-contact-header__title {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .jr-contact-body-content {
    padding: 100px 0 60px;
  }

  .jr-contact-header {
    margin-bottom: 40px;
  }

  .jr-contact-header__title {
    font-size: 32px;
    margin: 0 0 12px;
  }

  .jr-contact-header__description {
    font-size: 15px;
  }
}

/* @media (max-width: 575px) {
  .jr-contact-body-content {
    padding: 90px 0 50px;
  }
} */

/* *************************** */
/* ********** About ********** */
/* *************************** */
.jr-about-body-content {
  background-color: #f8f8fd;
}

.jr-about-body-content .jr-container,
.jr-services-body-content .jr-container {
  max-width: 1080px;
}

.jr-about-body-content .jr-faq-area .jr-container {
  max-width: 930px;
}

.jr-fig-content {
  padding: 80px 0;
  max-width: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.jr-fig-content.jr-fig-content-01 {
  padding: 180px 0 100px;
}

.jr-fig-content.jr-fig-content-02 {
  padding: 148px 0 80px;
}

.jr-fig-content.jr-fig-content-03 {
  padding: 0;
  background-color: #25324b;
}

.jr-fig-content.jr-fig-content-04 {
  padding: 80px 0 100px;
}

.jr-fig-content__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.jr-fig-content__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-fig-content__title {
  font-size: 45px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 70px;
  text-align: center;
  font-family: var(--primary-font);
}

.jr-fig-content__inner {
  gap: 70px;
}

.jr-fig-content--reverse {
  flex-direction: row-reverse;
}

.jr-fig-content__content {
  flex: 1;
  max-width: 70%;
}

.jr-fig-content.jr-fig-content-03 .jr-fig-content__content {
  padding: 175px 0;
  max-width: 50%;
}

.jr-fig-content__media {
  max-width: 50%;
  min-width: 300px;
}

.jr-fig-content__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.jr-fig-content.jr-fig-content-01 .jr-fig-content__media {
  width: 50%;
}

.jr-fig-content.jr-fig-content-03 .jr-fig-content__media {
  height: auto;
  flex: 1;
  max-width: 50%;
  align-self: stretch;
}

.jr-fig-content.jr-fig-content-03 .jr-fig-content__media img {
  width: 50vw;
  height: 100%;
  object-fit: cover;
  max-width: 50vw;
}

.jr-fig-content__heading {
  font-size: 44px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 8px;
  font-family: var(--primary-font);
}

.jr-fig-content-03 .jr-fig-content__heading,
.jr-fig-content-03 .jr-fig-content__description {
  color: var(--light-color);
}

.jr-fig-content__description {
  font-size: 20px;
  color: var(--dark-lite-color);
  margin: 0 0 20px;
  line-height: 1.6;
  font-family: var(--global-font);
}

.jr-fig-content__description:last-child {
  margin: 0;
}

.jr-fig-content__button {
  margin: 32px 0 0;
  /* display: inline-block;
  padding: 10px 20px;
  background-color: #ff5722;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: background-color 0.3s; */
}

/* .jr-fig-content__button:hover {
  background-color: #e64a19;
} */

.jr-fig-content__image {
  max-width: 100%;
  height: auto;
}

.jr-fig-content__image--small {
  max-width: 48%;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .jr-fig-content,
  .jr-fig-content.jr-fig-content-04 {
    padding: 60px 0;
  }

  .jr-fig-content.jr-fig-content-01,
  .jr-fig-content.jr-fig-content-02 {
    padding: 120px 0 80px;
  }

  .jr-fig-content__title {
    font-size: 42px;
    margin: 0 0 40px;
  }

  .jr-fig-content__heading {
    font-size: 42px;
  }

  .jr-fig-content__inner {
    gap: 40px;
  }

  .jr-fig-content.jr-fig-content-03 .jr-fig-content__content {
    padding: 80px 0;
  }

  .jr-fig-content__description {
    font-size: 18px;
    margin: 0 0 15px;
  }

  .jr-fig-content__button {
    margin: 24px 0 0;
  }
}

@media (max-width: 991px) {
  .jr-fig-content,
  .jr-fig-content.jr-fig-content-04 {
    padding: 50px 0;
  }

  .jr-fig-content.jr-fig-content-01 {
    padding: 100px 0 60px;
  }

  .jr-fig-content.jr-fig-content-02 {
    padding: 80px 0 60px;
  }

  .jr-fig-content.jr-fig-content-03 .jr-fig-content__content {
    padding: 60px 0;
  }

  .jr-fig-content__title {
    font-size: 38px;
    margin: 0 0 30px;
  }

  .jr-fig-content__heading {
    font-size: 38px;
  }

  .jr-fig-content__description {
    font-size: 16px;
  }

  /*

.jr-fig-content.jr-fig-content-03 .jr-fig-content__media img {
  width: 50vw;
  max-width: 50vw;
}

.jr-fig-content__image--small {
  max-width: 48%;
}

*/
}

@media (max-width: 767px) {
  .jr-fig-content.jr-fig-content-01 {
    padding: 90px 0 50px;
  }

  .jr-fig-content.jr-fig-content-02,
  .jr-fig-content.jr-fig-content-03 {
    padding: 60px 0;
  }

  .jr-fig-content,
  .jr-fig-content.jr-fig-content-04 {
    padding: 40px 0;
  }

  .jr-fig-content.jr-fig-content-03 .jr-fig-content__media,
  .jr-fig-content.jr-fig-content-03 .jr-fig-content__media img,
  .jr-fig-content.jr-fig-content-03 .jr-fig-content__content {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }

  .jr-fig-content__title {
    font-size: 32px;
    margin: 0 0 30px;
  }

  .jr-fig-content__inner {
    gap: 24px;
  }

  .jr-fig-content__inner,
  .jr-fig-content--reverse {
    flex-direction: column-reverse;
  }

  .jr-fig-content.jr-fig-content-01 .jr-fig-content__media,
  .jr-fig-content__media,
  .jr-fig-content__content {
    width: 100%;
    max-width: 100%;
  }

  .jr-fig-content__title {
    font-size: 32px;
  }

  .jr-fig-content__heading {
    font-size: 24px;
  }

  .jr-fig-content__description {
    font-size: 15px;
  }

  .jr-fig-content__media {
    width: 100%;
  }

  .jr-fig-content__description {
    font-size: 15px;
  }

  .jr-fig-content__button {
    margin: 10px 0 0;
  }
}

/* ******************************** */
/* ******** Why Choose Us ********* */
/* ******************************** */
.jr-why-choose {
  padding: 100px 0;
  max-width: 100%;
  background-color: #fff;
  z-index: 1;
  position: relative;
}

.jr-why-choose__gradient {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}

.jr-why-choose .jr-container {
  max-width: 1000px;
}

.jr-why-choose__title {
  font-size: 44px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  text-align: center;
}

.jr-why-choose__grid {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.jr-why-choose__card {
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid;
}

.jr-why-choose__card--01 {
  border-color: #54c9a4;
}

.jr-why-choose__card--02 {
  border-color: #f9bc18;
}

.jr-why-choose__card--03 {
  border-color: #4c7df2;
}

.jr-why-choose__card--04 {
  border-color: #9764df;
}

.jr-why-choose__card-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.jr-why-choose__number {
  font-size: 40px;
  font-weight: 600;
  font-family: var(--global-font);
}

.jr-why-choose__number--01 {
  color: #54c9a4;
}

.jr-why-choose__number--02 {
  color: #f9bc18;
}

.jr-why-choose__number--03 {
  color: #4c7df2;
}

.jr-why-choose__number--04 {
  color: #9764df;
}

.jr-why-choose__card-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.2;
  font-family: var(--primary-font);
  color: #25324b;
  margin: 0;
}

.jr-why-choose__card-description {
  font-size: 17px;
  color: var(--dark-lite-color);
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--global-font);
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .jr-why-choose {
    padding: 80px 0;
  }

  .jr-why-choose__title {
    font-size: 42px;
  }

  .jr-why-choose__number {
    font-size: 38px;
  }

  .jr-why-choose__card-title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .jr-why-choose__title {
    font-size: 38px;
  }

  .jr-why-choose__grid {
    margin-top: 40px;
    gap: 20px;
  }

  .jr-why-choose__card {
    padding: 20px;
  }

  .jr-why-choose__card-header {
    gap: 16px;
    margin-bottom: 16px;
  }

  .jr-why-choose__number {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .jr-why-choose {
    padding: 60px 0;
  }

  .jr-why-choose__title {
    font-size: 32px;
  }

  .jr-why-choose__grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
    gap: 16px;
  }

  .jr-why-choose__card-header {
    gap: 10px;
  }

  .jr-why-choose__card {
    padding: 16px;
  }

  .jr-why-choose__number {
    font-size: 30px;
  }

  .jr-why-choose__card-title {
    font-size: 20px;
  }

  .jr-why-choose__card-description {
    font-size: 15px;
  }
}

/* ****************************** */
/* ******* Services Section ***** */
/* ****************************** */
.jr-services {
  padding: 90px 0 100px;
  background-color: #fff;
  position: relative;
  z-index: 1;
}

.jr-services__gradient {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  transform: translateY(-50%);
}

.jr-services__container {
  max-width: 960px;
}

.jr-services__header {
  margin-bottom: 70px;
}

.jr-services__title {
  font-size: 44px;
  font-weight: 600;
  color: var(--dark-color);
  font-family: var(--primary-font);
  margin: 0 0 16px;
}

.jr-services__description {
  font-size: 20px;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-lite-color);
  line-height: 1.6;
  margin: 0;
}

.jr-services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.jr-services__item {
  display: flex;
  align-items: flex-start;
  gap: 32px;
}

.jr-services__icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  color: var(--primary-color);
}

.jr-services__icon svg {
  width: 100%;
  height: 100%;
}

.jr-services__content {
  flex-grow: 1;
}

.jr-services__item-title {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--primary-font);
  color: var(--dark-color);
  margin: 0 0 8px;
}

.jr-services__item-description {
  font-size: 17px;
  color: var(--dark-lite-color);
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .jr-services {
    padding: 80px 0;
  }

  .jr-services__header {
    margin-bottom: 50px;
  }

  .jr-services__title {
    font-size: 42px;
  }

  .jr-services__description {
    font-size: 18px;
  }

  .jr-services__grid {
    gap: 30px;
  }

  .jr-services__item {
    gap: 8px;
    flex-direction: column;
  }

  .jr-services__item-title {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .jr-services__header {
    margin-bottom: 40px;
  }

  .jr-services__title {
    font-size: 38px;
  }

  .jr-services__description {
    font-size: 16px;
  }

  .jr-services__icon {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 767px) {
  .jr-services {
    padding: 60px 0;
  }

  .jr-services__header {
    margin-bottom: 30px;
  }

  .jr-services__title {
    font-size: 32px;
    margin: 0 0 12px;
  }

  .jr-services__item-description,
  .jr-services__description {
    font-size: 15px;
  }

  .jr-services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jr-services__item-title {
    font-size: 20px;
  }

  .jr-services__icon {
    width: 56px;
    height: 56px;
  }
}

/* ****************************** */
/* ***** Rules & Regulations **** */
/* ****************************** */
.jr-rules {
  padding: 180px 0 100px;
  background-color: #f8f8fd;
  position: relative;
  z-index: 1;
}

.jr-rules__bg {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.jr-rules__bg img {
  /* height: 100%; */
  width: 100%;
  object-fit: cover;
  min-height: 500px;
}

.jr-rules .jr-container {
  max-width: 930px;
}

.jr-rules__header {
  margin-bottom: 90px;
}

.jr-rules__title {
  font-size: 45px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0;
  text-align: center;
}

.jr-rules__effective-date,
.jr-rules__intro {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 20px;
  line-height: 1.5;
}

.jr-rules__intro {
  margin-bottom: 60px;
}

.jr-rules__block:not(:last-child) {
  margin-bottom: 24px;
}

.jr-rules__block-title {
  font-size: 20px;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0 0 8px;
}

.jr-rules__block-para,
.jr-rules__list-item {
  font-size: 16px;
  font-weight: 400;
  font-family: var(--global-font);
  color: var(--dark-lite-color);
  margin: 0;
  line-height: 1.7;
}

.jr-rules__list-item + .jr-rules__list-item,
.jr-rules__block-para + .jr-rules__block-para {
  margin-top: 10px;
}

.jr-rules__list {
  margin: 15px 0 0 20px;
  list-style: disc;
}

/* Responsive styles */
@media (max-width: 1023px) {
  .jr-rules {
    padding: 120px 0 80px;
  }

  .jr-rules__header {
    margin-bottom: 70px;
  }

  .jr-rules__title {
    font-size: 42px;
  }
}

@media (max-width: 991px) {
  .jr-rules {
    padding: 100px 0 60px;
  }

  .jr-rules__header {
    margin-bottom: 60px;
  }

  .jr-rules__title {
    font-size: 38px;
  }

  .jr-rules__effective-date,
  .jr-rules__intro {
    font-size: 16px;
    margin: 0 0 15px;
  }

  .jr-rules__intro {
    margin-bottom: 50px;
  }
}

@media (max-width: 767px) {
  .jr-rules {
    padding: 100px 0 50px;
  }

  .jr-rules__header {
    margin-bottom: 50px;
  }

  .jr-rules__title {
    font-size: 32px;
    margin-bottom: 30px;
  }

  .jr-rules__effective-date,
  .jr-rules__intro,
  .jr-rules__block-para,
  .jr-rules__list-item {
    font-size: 15px;
  }

  .jr-rules__intro {
    margin-bottom: 40px;
  }

  .jr-rules__block:not(:last-child) {
    margin-bottom: 20px;
  }

  .jr-rules__block-title {
    font-size: 18px;
  }

  .jr-rules__list {
    margin: 10px 0 0 15px;
  }

  .jr-rules__list-item + .jr-rules__list-item,
  .jr-rules__block-para + .jr-rules__block-para {
    margin-top: 6px;
  }
}

@media (max-width: 575px) {
  .jr-rules__header {
    margin-bottom: 40px;
  }

  .jr-rules__intro {
    margin-bottom: 30px;
  }
}

/* ************************ */
/* *******Job Details****** */
/* ************************ */
.jr-job-details-body-content {
  padding: 110px 0 90px;
  background-color: #f8f9fa;
}

.jr-job-details {
}

/* Banner */
.jr-job-details__banner {
  height: 190px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.jr-job-details__banner img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* Company Header */
.jr-job-details__header {
  padding: 8px 32px 24px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

.jr-company__logo {
  width: 110px;
  height: 110px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  margin-top: -40px;
  border: 2px solid var(--light-color);
  align-self: flex-start;
}

/* .jr-company__logo img {
  max-width: 80%;
  max-height: 80%;
} */

.jr-company__info {
  flex: 1;
}

.jr-company__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark-color);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 5px;
}

.jr-verified-badge {
}

.jr-company__dsc {
  font-size: 12px;
  color: var(--dark-color);
  margin: 0 0 10px;
  line-height: 1.3;
}

.jr-company__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 13px;
  color: #777;
}

.jr-company__meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font: 500 12px/1.3 var(--global-font);
  color: #6f747a;
}

.jr-company__meta-item svg {
  min-width: fit-content;
}

.jr-job-details__actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.jr-job-details__btn {
  padding: 10px 17px;
}

/* .jr-job-details__btn:hover {
  background-color: #e64a19;
} */

.jr-job-details__social {
  display: flex;
  /* align-items: center; */
  gap: 10px;
}

.jr-job-details__social-link {
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background-color: var(--light-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6f747a;
  text-decoration: none;
  transition: 0.3s;
  border: 1px solid #dfe2e5;
}

.jr-job-details__social-link:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}

/* Job Content */
.jr-job-details__body-content {
  /* padding: 20px; */
}

.jr-job-details__header-block,
.jr-job-details__block {
  margin-bottom: 20px;
  padding: 32px;
  background-color: #fff;
  border-radius: 8px;
}

.jr-job-details__header-block {
  padding: 0;
}

.jr-job-details__block-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark-color);
  margin: 0 0 12px;
  font-family: var(--global-font);
}

/* Summary Grid */
.jr-summary__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}

/* .jr-summary__item {
  margin-bottom: 15px;
} */

.jr-summary__label {
  font-size: 14px;
  color: #111a2d;
  text-transform: uppercase;
  margin: 0 0 5px;
  line-height: 1.3;
   font-weight: bold;
}

.jr-summary__value {
  font-size: 14px;
  color: var(--dark-color);
  font-weight: 400;
  font-family: var(--global-font);
  line-height: 1.3;
}

/* Job Description */
.jr-summary__para p {
  font-size: 14px;
  color: var(--dark-lite-color);
  margin: 0 0 15px;
  line-height: 1.6;
  font-weight: 400;
  font-family: var(--global-font);
}

.jr-summary__para p:last-child {
  margin-bottom: 0;
}

/* Requirements */
.jr-requirements__group:not(:last-child) {
  margin-bottom: 20px;
}

.jr-requirements__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark-color);
  margin: 0 0 8px;
}

.jr-requirements__list {
  list-style: disc;
  margin-left: 20px;
}

.jr-requirements__item {
  position: relative;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--dark-color);
  line-height: 1.5;
  font-weight: 400;
}

.jr-requirements__item:last-child {
  margin: 0;
}

/* Benefits */
.jr-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.jr-benefit-item {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #e9eaed;
  transition: transform 0.3s;
}

.jr-benefit-img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.jr-benefit-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-color);
  margin: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .jr-benefits__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1023px) {
  .jr-job-details-body-content {
    padding: 100px 0 80px;
  }

  .jr-job-details__header {
    flex-wrap: wrap;
  }

  .jr-job-details__actions {
    width: 100%;
  }

  .jr-job-details__header {
    padding-inline: 24px;
  }

  .jr-job-details__block {
    padding: 24px;
  }
}

@media (max-width: 991px) {
  .jr-job-details-body-content {
    padding: 90px 0 60px;
  }

  .jr-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .jr-job-details__banner {
    height: 150px;
  }

  .jr-job-details__actions {
    margin-top: 15px;
    width: 100%;
  }

  .jr-summary__grid {
    grid-template-columns: 1fr;
  }

  .jr-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jr-company__logo {
    height: 90px;
    width: 90px;
  }

  .jr-job-details__block-title {
    font-size: 17px;
  }
}

@media (max-width: 575px) {
  .jr-job-details__header {
    padding: 10px 20px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .jr-job-details__actions {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .jr-job-details__block {
    padding: 20px;
  }

  .jr-benefits__grid {
    grid-template-columns: 1fr;
  }
}

/* *************************** */
/* ******* Related Jobs ****** */
/* *************************** */
.jr-related-cards {
  position: relative;
}

.jr-related-cards__header {
  margin-bottom: 20px;
}

.jr-related-cards__title {
  font: 700 20px/1.2 var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

/* *************************** */
/* ******* Apply Modal ******* */
/* *************************** */
/* Modal Overlay */
.jr-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: 20px 15px;
}

.jr-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal */
.jr-modal {
  background-color: #fff;
  border-radius: 15px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Modal Header */
.jr-modal__header {
  padding: 16px 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.jr-modal__title {
  font-size: 18px;
  font-weight: 600;
  font-family: var(--global-font);
  color: var(--dark-color);
  margin: 0;
}

.jr-modal__close {
  background: none;
  border: none;
  font-size: 20px;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.jr-modal__close:hover {
  color: red;
}

/* Modal Body */
.jr-modal__body {
  padding: 24px;
}

.jr-modal__label {
  display: block;
  font-size: 14px;
  font-family: var(--global-font);
  line-height: 1.2;
  font-weight: 500;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.jr-modal__textarea {
  width: 100%;
  height: 250px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
  resize: none;
  transition: border-color 0.3s;
}

.jr-modal__textarea:focus {
  outline: none;
  border-color: #ff5722;
}

/* Modal Footer */
.jr-modal__footer {
  padding: 16px 24px;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}

.jr-modal__button {
  padding: 8px 16px;
  border-radius: 8px;
  font: 500 14px/1.5 var(--global-font);
  cursor: pointer;
  transition: background-color 0.3s;
  border: none;
}

.jr-modal__button--cancel {
  background-color: #e5e7eb;
  color: var(--dark-color);
}

.jr-modal__button--cancel:hover {
  background-color: #e9ecef;
}

.jr-modal__button--submit {
  background-color: var(--primary-color);
  color: white;
}

.jr-modal__button--submit:hover {
  background-color: #e64a19;
}

.validation-error {
  color: red;
  font-size: 12px;
  margin-top: 15px;
}

 .dropdown {
        position: relative;
        display: inline-block;
    }

    .dropdown-toggle {
        cursor: pointer;
    }

    .dropdown-content {
        display: none;
        position: absolute;
        right: 0;
        background-color: #fff;
        min-width: 160px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
        border-radius: 4px;
        overflow: hidden;
    }

    .dropdown:hover .dropdown-content {
        display: block;
    }

    .dropdown-content a,
    .dropdown-content form button {
        color: #333;
        padding: 10px 16px;
        text-decoration: none;
        display: block;
        width: 100%;
        text-align: left;
        background: white;
        border: none;
        font-size: 16px;
        font-family: var(--global-font);
    }

    .dropdown-content a:hover,
    .dropdown-content form button:hover {
        background-color: #f2f2f2;
    }

    .dropdown-content form {
        margin: 0;
    }

    /* Custom Confirm Modal */
        .custom-confirm-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .custom-confirm-box {
            background: white;
            padding: 20px;
            border-radius: 8px;
            text-align: center;
            width: 300px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .custom-confirm-box p {
            margin-bottom: 20px;
        }

        .custom-confirm-box button {
            margin: 0 8px;
            padding: 8px 16px;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }

        .btn-confirm {
            background-color: #d9534f;
            color: white;
        }

        .btn-cancel {
            background-color: #ccc;
            color: black;
        }
